home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Easy 2010 May
/
Mac Life Ubuntu.iso
/
casper
/
filesystem.squashfs
/
var
/
lib
/
dpkg
/
info
/
usplash.preinst
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2009-03-09
|
371 b
|
13 lines
#!/bin/sh -e
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if dpkg --compare-versions "$2" lt-nl "0.5.24"; then
# migrate old rc symlinks
for l in 0 1 6; do
if [ -L /etc/rc$l.d/K01usplash ] && ! [ -e /etc/rc$l.d/K02usplash ]; then
mv /etc/rc$l.d/K01usplash /etc/rc$l.d/K02usplash
fi
done
fi
fi